home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / hangman / soundm~1.bas < prev    next >
BASIC Source File  |  1999-09-06  |  338b  |  14 lines

  1. Attribute VB_Name = "Sound"
  2. Option Explicit
  3.  
  4. '******************************
  5. 'Sound.
  6. '******************************
  7. Public Const SND_ASYNC = &H1
  8. Public Const SND_NODEFAULT = &H2
  9. Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" _
  10.     (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
  11.  
  12.  
  13.  
  14.